home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 1
/
Precision Software Applications Silver Collection Volume One (PSM) (1993).iso
/
tutor
/
c1tutor.exe
/
FORLOOP.C
< prev
next >
Wrap
C/C++ Source or Header
|
1987-07-04
|
242b
|
11 lines
/* Chapter 3 - Program 3 */
/* This is an example of a for loop */
main()
{
int index;
for(index = 0;index < 6;index = index + 1)
printf("The value of the index is %d\n",index);
}